home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / smartlnk.zip / README.DOC < prev    next >
Text File  |  1993-04-02  |  1KB  |  38 lines

  1.  
  2.  
  3.         SMARTLNK.C demonstrates the effectiveness of TopSpeed
  4.         SmartLinker using a rather extreme example.  With TopSpeed C &
  5.         C++ only the code and data that is absolutely necessary is
  6.         linked in, however with Borland C++ and Zortech C++ the entire
  7.         standard library is linked in.  It is also possible using this
  8.         example to compare the size of the standard library as
  9.         implemented for each compiler, TopSpeed wins here too with a
  10.         much more compact library that nevertheless conforms to the
  11.         ANSI standard and has passed numerous rigorous conformance
  12.         tests.
  13.  
  14.  
  15.         Borland C++
  16.         ===========
  17.  
  18.         smartlnk.exe    53202
  19.         smartlnk.obj     6475
  20.  
  21.         TopSpeed C++ 
  22.         ============
  23.  
  24.         smartlnk.exe     5183  
  25.         smartlnk.obj     5754
  26.  
  27.         Zortech C++
  28.         ===========
  29.  
  30.         smartlnk.exe    52840
  31.         smartlnk.obj     6445
  32.  
  33.         TopSpeed C++ (entire standard library)
  34.         ======================================
  35.         stdlib.exe      40492
  36.         smartlnk.obj     5754
  37.  
  38.